home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Musik / Misc / Amster / Source / include / info.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-01-01  |  302 b   |  23 lines

  1. /*
  2. ** Information Header
  3. */
  4.  
  5. #include <sys/types.h>
  6.  
  7. #include "include/mui.h"
  8.  
  9. #ifndef AMSTER_INFO_H
  10. #define AMSTER_INFO_H
  11.  
  12. struct infodata {
  13.     u_long *msglist;
  14. };
  15.  
  16. MUIF info_dispatch(REG(a0) struct IClass *cl,REG(a2) Object *obj,REG(a1) Msg msg);
  17.  
  18. #define INFO_MSG 0x3001
  19.  
  20.  
  21.  
  22. #endif    /* AMSTER_INFO_H */
  23.